projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc18a09
)
Port recent changes to older GCC
author
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 14 Aug 2018 11:38:44 +0000
(
04:38
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 14 Aug 2018 11:39:05 +0000
(
04:39
-0700)
Problem reported by Glenn Morris in:
https://lists.gnu.org/r/emacs-devel/2018-08/msg00446.html
* src/lisp.h (make_pointer_integer_unsafe):
Port to older GCC.
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index 18d53537ccacc89362d331e6d6dc25ee2c607be3..da93efdd934ce9df2d75d6179bcd404342dae47c 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-1191,7
+1191,8
@@
XFIXNUMPTR (Lisp_Object a)
INLINE Lisp_Object
make_pointer_integer_unsafe (void *p)
{
- return TAG_PTR (Lisp_Int0, p);
+ Lisp_Object a = TAG_PTR (Lisp_Int0, p);
+ return a;
}
INLINE Lisp_Object